home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / System / Sample 2.4 Think C distribution / misc.h < prev    next >
Text File  |  1990-08-29  |  833b  |  31 lines

  1. /*______________________________________________________________________
  2.  
  3.     misc.h - Miscellany Module Interface.
  4.     
  5.     Copyright © 1988, 1989, 1990, Northwestern University.
  6. _____________________________________________________________________*/
  7.  
  8. #ifndef __misc__
  9. #define __misc__
  10.  
  11. #ifndef __rpp__
  12. #include "rpp.h"
  13. #endif
  14.  
  15. #ifndef __glob__
  16. #include "glob.h"
  17. #endif
  18.  
  19. extern void misc_HiliteScan(void);
  20. extern void misc_ClearReport (void);
  21. extern void misc_CheckEject (short refNum);
  22. extern void misc_ValPrint (rpp_PrtBlock *p, Boolean report);
  23. extern void misc_ReadPref (void);
  24. extern void misc_WritePref (void);
  25. extern WindKind misc_GetWindKind (WindowPtr theWindow);
  26. extern void misc_Notify (short msg, Boolean wait);
  27. extern void misc_Update (void);
  28. extern void misc_PrintError (OSErr rCode);
  29. extern void misc_SetCursor (void);
  30.  
  31. #endif